home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -f
- # SimpleNetStarter backup program, installs mailDBupdate in cron if it isn't
- # there, leaves it alone otherwise.
- # Copyright 1992 NeXT Computer, Inc. All rights reserved.
-
- # start at root
- set v
- cd /
-
- if [ ! -f /etc/crontab ]; then
- echo "making /etc/crontab from scratch" > /dev/console 2>&1
- touch /etc/crontab
- chown root.staff /etc/crontab
- chmod 644 /etc/crontab
- fi
-
- mailDBpresent=`/bin/grep mailDBupdate /etc/crontab`
-
- if [ "$mailDBpresent" -eq "" ]; then
- echo "installing mailDBupdate command" > /dev/console 2>&1
- echo "3 0 * * * root /usr/bin/mailDBupdate" >> /etc/crontab
- else
- echo "mailDBupdate command already present" > /dev/console 2>&1
- fi
-
- exit 0
-
-
-
-
-